home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / cslib220.zip / LIB / INFO.TXT
Text File  |  1997-06-05  |  1KB  |  65 lines

  1.  
  2.  
  3.           Naming conventions CS-libraries
  4.           -------------------------------
  5.  
  6.  
  7.  
  8. The libraries are named according to:
  9.  
  10.     LIB NAME: csCPMV.lib
  11.  
  12.  
  13. with  C: The compiler.
  14.       b Borland C++ 4.5
  15.       c Borland C++ 5.0
  16.       w Watcom
  17.       v Visual C++    1.5 (16 bits) or 2.0 ( 32 bits )
  18.       m Visual C++    4.2
  19.       g GNU
  20.       P: The platform
  21.       d Dos
  22.       w Windows 16 bit
  23.       n NT, Windows95
  24.       o OS/2
  25.       l Linux
  26.       M: Memory model
  27.       c Compact
  28.       l Large
  29.       h Huge
  30.       f Flat memory model
  31.       m Multi threaded MFC compatible (Visual C++ 32 bits only)
  32.       V: Version
  33.       p Production (Release)
  34.       d Debug
  35.       e Evaluation version (NOT in the commercial version.)
  36.  
  37.  
  38.  
  39. Example:
  40.  
  41.    CSBWCD.LIB
  42.       This the library for Borland, for 16 bits Windows,
  43.       Compact memory model the Debug version.
  44.  
  45.    csBWCD.lib
  46.      ^^^^
  47.      |||| Debug version
  48.      ||| Compact memory model
  49.      || 16 bits Windows
  50.      | Borland 4.51 compiler
  51.  
  52.  
  53.  
  54. Example:
  55.  
  56.    CSMNME.lib
  57.       This the library for Visual C++ 4.2, Windows95 or NT,
  58.       requiring MFC as a DLL.
  59.  
  60.  
  61.  
  62. Only one of these libraries needs to be linked in at any time!
  63.  
  64.  
  65.